home *** CD-ROM | disk | FTP | other *** search
- /*
- DarkSide 3.0 - a 7.0 dependant, system clean expandable screen saver.
-
- copyright ⌐╩1990, 1991, 1992 by Tom Dowdy
- All rights reserved.
-
- */
-
- #include "Fader.r"
-
- resource 'DITL' (5000, purgeable) {
- {
- { 5, 5, 20, areaWidth-20 },
- StaticText {enabled, "Invert ⌐ 1990-92 by Tom Dowdy"},
-
- { 25, 5, 25+35, areaWidth-20 },
- Control {enabled, 5000+1},
-
- };
- };
-
-
- resource 'CNTL' (5000+1, purgeable) {
- {0, 0, 0+40, areaWidth-20},
- 5,
- visible,
- 9,
- 0,
- 16*200,
- 5000+1, // STR# ID of the names
- "Speed of flashing: "
- };
-
- // strings filled in for the above control
- resource 'STR#' (5000+1) {
- {
- "Sloth-like";
- "Molasses";
- "Pokey";
- "Slow";
- "Medium";
- "Fast";
- "Speedy";
- "Wizzy";
- "Lightning";
- "Blinding";
- };
- };
-
-
- // resource to control the DITL above
- resource 'DCTL' (5000) {
- {
- // item 1 about ID ignored ignored
- 1, 5000, 0, 0;
-
- // item 2 res control ignored first short
- 2, 3, 0, 0;
- };
- };
-
- // default values for our fader
- resource 'DFLT' (5000) {
- {5},
- {};
- };
-
- resource 'HELP' (5000) {
- "Invert ⌐ 1990-92 by Tom Dowdy\n\n"
- "Invert is a very simple fader designed mostly to show you how to create "
- "a fader for DarkSide. However, if you enjoy running it on your machine, "
- "that's okay too."
- };
-